home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / UTILITY / CMDED2E6.ARJ / MAKECMD.BAT < prev    next >
DOS Batch File  |  1992-06-30  |  383b  |  14 lines

  1. rem: For MASM.  Can also use TASM - see make.bat
  2. rem: or Microsoft Quick Assembler - see cmdedit.mak
  3. masm cmdedit;
  4. masm cmdmacro;
  5. masm dirs;
  6. masm edit;
  7. masm history;
  8. masm install;
  9. masm strstack;
  10. masm utl;
  11. rem the module `install' must be the last one in the link command!
  12. link /M cmdedit+cmdmacro+dirs+edit+history+strstack+utl+install ;
  13. exe2bin cmdedit.exe cmdedit.com
  14.